type context.cancelCtx
15 uses
context (current package)
context.go#L268: func withCancel(parent Context) *cancelCtx {
context.go#L272: c := &cancelCtx{}
context.go#L284: if cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {
context.go#L332: cancelCtx
context.go#L367: func parentCancelCtx(parent Context) (*cancelCtx, bool) {
context.go#L372: p, ok := parent.Value(&cancelCtxKey).(*cancelCtx)
context.go#L416: type cancelCtx struct {
context.go#L426: func (c *cancelCtx) Value(key any) any {
context.go#L433: func (c *cancelCtx) Done() <-chan struct{} {
context.go#L448: func (c *cancelCtx) Err() error {
context.go#L457: func (c *cancelCtx) propagateCancel(parent Context, child canceler) {
context.go#L524: func (c *cancelCtx) String() string {
context.go#L531: func (c *cancelCtx) cancel(removeFromParent bool, err, cause error) {
context.go#L644: cancelCtx
context.go#L762: case *cancelCtx:
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |